TechDraw Dimensión Radio |
Ubicación en el Menú |
---|
TechDraw → Dimensión Radio |
Entornos de trabajo |
TechDraw |
Atajo de teclado por defecto |
Ninguno |
Introducido en versión |
- |
Ver también |
TechDraw Dimensión Diámetro |
La herramienta Dimensión Radio añade una dimensión de radio a una Vista. La dimensión puede aplicarse a cualquier Borde del dibujo que sea un círculo o un arco circular. La distancia será inicialmente la distancia proyectada (es decir, como se muestra en el dibujo), pero puede cambiarse a la distancia real en 3D usando el Enlace Dimensión herramienta.
Measuring a circle, indicating the radius
Single tool
(default): press the down arrow to the right of the button and select the Insert Radius Dimension option from the dropdown.To change the properties of a dimension object either double-click it in the drawing or in the Tree view. This will open the Dimension dialog.
Dimension objects are vulnerable to the "topological naming problem". See TechDraw LengthDimension.
See also: Autogenerated API documentation and FreeCAD Scripting Basics.
The Radius Dimension tool can be used in macros and from the Python console by using the following functions:
dim1 = FreeCAD.ActiveDocument.addObject("TechDraw::DrawViewDimension", "Dimension")
dim1.Type = "Radius"
dim1.References2D=[(view1, "Edge1")]
page.addView(dim1)